13 lines
No EOL
223 B
C#
13 lines
No EOL
223 B
C#
using ProtoBuf;
|
|
|
|
namespace WingsAPI.Data.Families;
|
|
|
|
[ProtoContract]
|
|
public class FamilyAchievementProgressDto
|
|
{
|
|
[ProtoMember(1)]
|
|
public int Id { get; set; }
|
|
|
|
[ProtoMember(2)]
|
|
public int Count { get; set; }
|
|
} |