2025-11-28 00:35:46 +09:00

38 lines
1.4 KiB
C#

//
// <copyright file="MyBusinessObject.cs" company="Microsoft">
// Copyright (C) Microsoft. All rights reserved.
// </copyright>
//
using System;
using System.Collections.Generic;
using System.Text;
namespace WSSSubTabListviewSample
{
// Define your business objects in a separate project like this one
// Replace with your definition of business objects
public class MyBusinessObject
{
public string ComputerName { get; set;}
public string NetworkName { get; set;}
public string AdminName { get; set;}
public string CompanyName { get; set;}
public string Description { get; set;}
public string ProgressDataStrName { get; set;}
public string ProgressDataStrValue { get; set;}
public float ProgressDataFloatMin { get; set;}
public float ProgressDataFloatMax { get; set;}
public float ProgressDataFloatVal { get; set;}
public string[] FormattedListItem { get; set;}
public string[] BarChart1DataSeries1 { get; set;}
public string[] LineChart1DataSeries1 { get; set;}
public string[] PieChart1DataSeries1 { get; set;}
public string[] BarChart2DataSeries1 { get; set;}
public string[] BarChart2DataSeries2 { get; set;}
public string[] BarChart2DataSeries3 { get; set;}
public string[] BarChart2DataSeries4 { get; set;}
}
}