File: Data\Address.cs | Web Access |
Project: src\src\Components\Samples\BlazorUnitedApp\BlazorUnitedApp.csproj (BlazorUnitedApp) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace BlazorUnitedApp.Data; public class Address { public string Street { get; set; } = string.Empty; public string City { get; set; } = string.Empty; public string State { get; set; } = string.Empty; public string Zip { get; set; } = string.Empty; } |