Files
WatchIt/WatchIt.Common/WatchIt.Common.Model/Roles/ICreatorRoleMediaRequest.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 ICreatorRoleMediaRequest : ICreatorRoleRequest
{
#region PROPERTIES
public long PersonId { get; set; }
#endregion
}