2024-06-03 19:44:25 +00:00
|
|
|
namespace Api.Models;
|
2024-02-09 00:29:56 +00:00
|
|
|
|
2024-06-03 19:44:25 +00:00
|
|
|
public class Item
|
2024-02-09 00:29:56 +00:00
|
|
|
{
|
|
|
|
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; }
|
|
|
|
}
|