mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
11 lines
267 B
C#
11 lines
267 B
C#
using System.ComponentModel;
|
|
|
|
namespace Marechai.ViewModels
|
|
{
|
|
public class DocumentPersonViewModel : BaseViewModel<int>
|
|
{
|
|
public string Name { get; set; }
|
|
public string Person { get; set; }
|
|
public int? PersonId { get; set; }
|
|
}
|
|
} |