Files
WatchIt/WatchIt.Common/WatchIt.Common.Model/Roles/IActorRoleRequest.cs

12 lines
205 B
C#

namespace WatchIt.Common.Model.Roles;
public interface IActorRoleRequest
{
#region PROPERTIES
public short TypeId { get; set; }
public string Name { get; set; }
#endregion
}