using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Bimface
{
///
/// bimface颜色
///
public class Color
{
///
/// r
///
public float red { get; set; }
///
/// g
///
public float green { get; set; }
///
/// b
///
public float blue { get; set; }
///
/// a
///
public float alpha { get; set; }
}
}