10 lines
247 B
C#
10 lines
247 B
C#
using LightlessSync.API.Data;
|
|
|
|
namespace LightlessSync.API.Dto.CharaData;
|
|
|
|
public record CharaDataDto(string Id, UserData Uploader)
|
|
{
|
|
public string Description { get; init; } = string.Empty;
|
|
public DateTime UpdatedDate { get; init; }
|
|
}
|