10 lines
235 B
C#
10 lines
235 B
C#
namespace Marco.Pms.Model.ViewModels.Directory
|
|
{
|
|
public class ContactNoteVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Note { get; set; } = string.Empty;
|
|
public Guid ContactId { get; set; }
|
|
}
|
|
}
|