chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user