amazfitbiptools/WatchFace/Models/Resource.cs

16 lines
328 B
C#

using System.Collections.Generic;
namespace WatchFace.Models
{
public class Resource
{
public Resource(byte id, List<Parameter> descriptor)
{
Id = id;
Descriptor = descriptor;
}
public int Id { get; }
public List<Parameter> Descriptor { get; }
}
}