17 lines
338 B
C#
17 lines
338 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
namespace SemanticKernel.AotCompatibility.Plugins;
|
|
|
|
internal sealed class Location
|
|
{
|
|
public string Country { get; set; }
|
|
|
|
public string City { get; set; }
|
|
|
|
public Location(string country, string city)
|
|
{
|
|
this.Country = country;
|
|
this.City = city;
|
|
}
|
|
}
|