aboutsummaryrefslogtreecommitdiffstats
path: root/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/50f62ae6f0e4001919a8a27d0455923c
stat options
Period:
Authors:

Commits per author per week (path 'Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/50f62ae6f0e4001919a8a27d0455923c')

AuthorW24 2026W25 2026W26 2026W27 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>();
        }
    }
}