123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PaintDotNet.Base.Functionodel
- {
- /// <summary>
- /// 多相面积含量
- /// </summary>
- public class MutiPolyphaseModel
- {
- public PhaseModel Model { get; set; }
- public int ColorStart { get; set; }
- public int ColorEnd { get; set; }
- }
- }
|