|
// 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.Immutable;
using Newtonsoft.Json;
namespace Microsoft.DotNet.Helix.Client.Models
{
public partial class WorkItemLog
{
public WorkItemLog(string module, string uri)
{
Module = module;
Uri = uri;
}
[JsonProperty("Module")]
public string Module { get; set; }
[JsonProperty("Uri")]
public string Uri { get; set; }
[JsonIgnore]
public bool IsValid
{
get
{
if (string.IsNullOrEmpty(Module))
{
return false;
}
if (string.IsNullOrEmpty(Uri))
{
return false;
}
return true;
}
}
}
}
|