File: Models\AzureDevOpsCommit.cs
Web Access
Project: src\src\Microsoft.DotNet.Git.IssueManager\src\Microsoft.DotNet.Git.IssueManager.csproj (Microsoft.DotNet.Git.IssueManager)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using System.Collections.Generic;
 
namespace Microsoft.DotNet.Git.IssueManager
{
    public class AzureDevOpsCommit
    {
        public List<Value> Value { get; set; }
    }
 
    public class Value
    {
        public Author Author { get; set; }
    }
 
    public class Author
    {
        public string Name { get; set; }
 
        public string Email { get; set; }
 
        public DateTime Date { get; set; }
    }
}