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

10 lines
193 B
C#
Raw Normal View History

2024-10-09 01:16:05 +02:00
namespace WatchIt.Common.Model.Roles;
public interface ICreatorRolePersonRequest : ICreatorRoleRequest
{
#region PROPERTIES
public long MediaId { get; set; }
#endregion
}