summaryrefslogtreecommitdiff
path: root/Api/Models/Content.cs
blob: d59c8e14066f11521fc279f29ea7dfa8427a0bbd (plain) (blame)
1
2
3
4
5
6
7
namespace WikiWaka.Api.Models;

public class Content
{
    public int Id { get; set; }
    public ICollection<Property> Properties { get; set; }
}