mirror of https://github.com/duggerd/KFDtool.git
21 lines
392 B
C#
21 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace KFDtool.Adapter.Bundle
|
|
{
|
|
public class Model
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public List<string> Revision { get; set; }
|
|
|
|
public Model()
|
|
{
|
|
Revision = new List<string>();
|
|
}
|
|
}
|
|
}
|