20 lines
366 B
C#
20 lines
366 B
C#
using OwnChar.Data.Model.Client;
|
|
|
|
namespace OwnChar.Api.Updates;
|
|
|
|
public class GroupUpdate : OwnCharObjectUpdate
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Fandom { get; set; }
|
|
|
|
public GroupUpdate() : base()
|
|
{
|
|
}
|
|
|
|
public GroupUpdate(Group group) : base(group)
|
|
{
|
|
Name = group.Name;
|
|
Fandom = group.Fandom;
|
|
}
|
|
}
|