| Mode | Name | Size | |
|---|---|---|---|
| -rw-r--r-- | MachineStudio_TST.cs | 4420 | logstatsplain |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.CodeGeneration
{
public class ProtoEnumFile : EnumerationFile
{
public String Package { get; set; }
public List<String> Imports { get; set; }
public ProtoEnumFile()
{
Imports = new List<string>();
}
}
}
