reactredux/webapi/Core/Abstractions/DomainObjects/PersonBase.cs

9 lines
223 B
C#

using Core.DomainObjects;
namespace Core.Abstractions.DomainObjects {
public abstract class PersonBase<T> : DomainObjectBase<T> {
public Guid Id { get; set; }
public MediaAttachment? Image { get; set; }
}
}