AyCode.Core/AyCode.Interfaces/Profiles/Dtos/IAcProfileDtoBase.cs

9 lines
222 B
C#

using AyCode.Interfaces.Entities;
using AyCode.Interfaces.MediaInfo;
namespace AyCode.Interfaces.Profiles.Dtos;
public interface IAcProfileDtoBase : IEntityGuid, IOwnerId, IMediaInfo
{
string? Name { get; set; }
}