9 lines
197 B
C#
9 lines
197 B
C#
namespace Model;
|
|
|
|
public record BuffDoc : DocEntry
|
|
{
|
|
public required string Character { get; init; }
|
|
public string? MaxStacks { get; init; }
|
|
public string? Description { get; init; }
|
|
}
|