mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2024-11-10 07:54:20 +01:00
21 lines
496 B
C#
21 lines
496 B
C#
using System;
|
|
using ToolQit;
|
|
|
|
namespace SharpRss.Models
|
|
{
|
|
public class GroupModel
|
|
{
|
|
public GroupModel()
|
|
{
|
|
HexColor = Utilities.GenerateRandomHexColor();
|
|
Id = Guid.NewGuid().ToString();
|
|
}
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
public string HexColor { get; set; }
|
|
public int FeedCount { get; set; }
|
|
public string Icon { get; set; } = string.Empty;
|
|
public string Id { get; set; }
|
|
}
|
|
}
|