16 lines
446 B
C#
16 lines
446 B
C#
namespace Butter.Dtos.Person;
|
|
|
|
/// <summary>
|
|
/// Represents the data needed to create a new person.
|
|
/// </summary>
|
|
public class PersonCreateDto {
|
|
/// <summary>
|
|
/// Gets or sets the name of the person.
|
|
/// </summary>
|
|
public required string Name { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the asset ID to use as the profile picture.
|
|
/// </summary>
|
|
public Guid? ProfileAssetId { get; set; }
|
|
}
|