using AyCode.Entities.Profiles; using System.ComponentModel.DataAnnotations.Schema; using TIAM.Entities.Addresses; namespace TIAM.Entities.Profiles; [Table(nameof(Profile))] public class Profile : AcProfile
, IProfile
{ public Profile() : base() { } public Profile(Guid id) : base(id) { } public Profile(Guid id, string name) : base(id, name) { } }