summaryrefslogtreecommitdiff
path: root/Api/Contract/WikiProperty.cs
blob: 7f00812f7bd0389caee905da7db253c88e55f332 (plain) (blame)
1
2
3
4
5
6
7
8
namespace WikiWaka.Api.Contract;

public class WikiProperty
{
    public required int Id { get; init; }
    public required string Text { get; set; }
    public required string LanguageCode { get; set; }
}