File size: 828 Bytes
8c763fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;

namespace Reporting
{
    public sealed class Build
    {
        public string Repo { get; set; }

        public string Branch { get; set; }

        public string Architecture { get; set; }

        public string Locale { get; set; }

        public string GitHash { get; set; }

        public string BuildName { get; set; }

        public DateTime TimeStamp { get; set; }

        public Dictionary<string, string> AdditionalData { get; set; } = new Dictionary<string, string>();
    }
}