17 lines
349 B
C#
17 lines
349 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IronIntel.Contractor
|
|
{
|
|
public class IIColor
|
|
{
|
|
public byte Alpha { get; set; }
|
|
public byte Red { get; set; }
|
|
public byte Green { get; set; }
|
|
public byte Blue { get; set; }
|
|
}
|
|
}
|