roles endpoints in media controller added

This commit is contained in:
2024-10-06 21:22:08 +02:00
Unverified
parent 41b15abef1
commit 4a5a688aa4
7 changed files with 148 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
using System.Text.Json.Serialization;
using WatchIt.Database.Model.Person;
namespace WatchIt.Common.Model.Roles;
@@ -13,4 +14,12 @@ public interface ICreatorRolePersonRequest
short TypeId { get; set; }
#endregion
#region PUBLIC METHODS
PersonCreatorRole CreateCreatorRole(long personId);
#endregion
}