10 lines
253 B
C#
10 lines
253 B
C#
namespace TightWiki.Models.DataModels
|
|
{
|
|
public class EmojiCategory
|
|
{
|
|
public int EmojiId { get; set; }
|
|
public string Category { get; set; } = string.Empty;
|
|
public string EmojiCount { get; set; } = string.Empty;
|
|
}
|
|
}
|