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