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

8 lines
198 B
C#

namespace Core.Abstractions.DomainObjects {
public abstract class PageSectionBase<T> : DomainObjectBase<T> {
public string? Title { get; set; }
public string? Text { get; set; }
}
}