10 lines
193 B
C#
10 lines
193 B
C#
|
|
namespace WatchIt.Common.Model.Roles;
|
||
|
|
|
||
|
|
public interface ICreatorRolePersonRequest : ICreatorRoleRequest
|
||
|
|
{
|
||
|
|
#region PROPERTIES
|
||
|
|
|
||
|
|
public long MediaId { get; set; }
|
||
|
|
|
||
|
|
#endregion
|
||
|
|
}
|