stat options
Commits per author per week (path 'Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/50f62ae6f0e4001919a8a27d0455923c')
| Author | W24 2026 | W25 2026 | W26 2026 | W27 2026<using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.CodeGeneration
{
public class ProtoMessageFile : CodeObject
{
public String Name { get; set; }
public String Package { get; set; }
public List<String> Imports { get; set; }
public List<ProtoProperty> Properties { get; set; }
public ProtoMessageFile()
{
Imports = new List<string>();
Properties = new List<ProtoProperty>();
}
}
}
|
|---|
