9 lines
195 B
C#
9 lines
195 B
C#
namespace Model;
|
|
|
|
public abstract record DocEntry
|
|
{
|
|
public required string FileName { get; init; }
|
|
public required string FilePath { get; init; }
|
|
public string? Body { get; init; }
|
|
}
|