12 lines
340 B
C#
12 lines
340 B
C#
|
namespace TodoApi.Models;
|
||
|
|
||
|
public class TodoItem
|
||
|
{
|
||
|
public string? Author { get; set; }
|
||
|
public string? AuthorId { get; set; }
|
||
|
public long Id { get; set; }
|
||
|
public string? Likes { get; set; }
|
||
|
public string? Popularity { get; set; }
|
||
|
public string? Reads { get; set; }
|
||
|
public string[]? Tags { get; set; }
|
||
|
}
|