ActorRolesPanelComponent added, other fixes

This commit is contained in:
2024-10-12 01:51:39 +02:00
Unverified
parent 55ff257f56
commit d50373f4ba
20 changed files with 238 additions and 14 deletions

View File

@@ -0,0 +1,9 @@
namespace WatchIt.Common.Model.Roles;
public interface IRoleResponse
{
Guid Id { get; set; }
long MediaId { get; set; }
long PersonId { get; set; }
short TypeId { get; set; }
}