9 lines
199 B
C#
9 lines
199 B
C#
namespace Marco.Pms.Model.Dtos.Directory
|
|
{
|
|
public class CreateContactNoteDto
|
|
{
|
|
public string Note { get; set; } = string.Empty;
|
|
public Guid ContactId { get; set; }
|
|
}
|
|
}
|